Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 733 Bytes

File metadata and controls

28 lines (19 loc) · 733 Bytes

Oversharing On Setup

Definition:

  • Where every test sets up a lot of shared data which only some tests need.

Code Example:

beforeEach(() => {
  databaseConnection = openDatabase();
  inputFile = loadBigFile();
  userList = loadUserList();
  imageData = loadImageBytes();
});

References:

Quality attributes